home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 / Ham Radio 2000.iso / ham2000 / packet / p_tapr / tnchst / hostlit.inc < prev    next >
Text File  |  1989-07-26  |  975b  |  40 lines

  1. /*****************************************************
  2. *
  3. *
  4. *
  5. * SYSTEM NAME    : Literals
  6. *
  7. * DESCRIPTION    : These are COMMON to all N2WX switch C modules
  8. *          and always #include(d) during compilations
  9. *
  10. * DATE        DESCRIPTION
  11. *30 mar 86    Initial development
  12. ******************************************************/
  13.  
  14.     /*** Helpful literals ***/
  15. #define NULL 0
  16. #define    NIL  0
  17. #define FALSE 0
  18. #define TRUE (-1)
  19. #define EOF (-1)
  20.  
  21.     /*** type definitions. beautifiers. c/80 doesnt
  22.          support real "typedef" but that's not really our problem ***/
  23. #define byte unsigned char
  24. #define word unsigned int
  25. #define end_if /**/
  26. #define end_while /**/
  27.  
  28. /* GLOBAL is a null declaration, any var here will be referenced elsewhere */
  29. #define GLOBAL /**/
  30.  
  31.     /* true for C80 inconsistensies -- set for to find 
  32.        parts in code which may exhibit incompatabilities,
  33.        or are a result of machine and/or compiler specific
  34.        operations */    
  35.  
  36. #define C80 (-1)
  37.  
  38.  
  39.  
  40.